home *** CD-ROM | disk | FTP | other *** search
/ Computer Inter@ctive 17 / Computer Interactive cdrom 17 - gen 99.iso / ZDNETIT / CONTENT / SMTPCEMS.ZIP / SEEVER.C < prev    next >
Encoding:
C/C++ Source or Header  |  1998-11-15  |  405 b   |  20 lines

  1. /*
  2. ** Displays SEE32.DLL Version (VERSION.C)
  3. */
  4.  
  5. #include <windows.h>
  6. #include <stdio.h>
  7. #include "see.h"
  8.  
  9. static Buffer[65];
  10.  
  11. void main(void)
  12. {int Version; 
  13.  Version = seeStatistics(SEE_GET_VERSION);
  14.  printf("SEE32 Version: %1d.%1d.%1d\n",0x0f&(Version>>8),0x0f&(Version>>4),0x0f&Version);
  15.  seeDebug(SEE_GET_REGISTRATION,(LPSTR)Buffer,65);
  16.  printf(" Registration: %s\n", Buffer);
  17.  
  18.  
  19.